getrandmax
Show the maximum possible value of random number
getrandmax()
function returns the maximum possible value that can be returned by rand()
.
Returns the largest possible value of the random number that can be returned by rand():
<?php echo ( getrandmax ( ) ) ; ?>
Run the instance
getrandmax ( ) ;